home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue52 / RichEdit / REMain.dfm / REMain.txt < prev   
Encoding:
Text File  |  1999-08-06  |  30.5 KB  |  794 lines

  1. object MainForm: TMainForm
  2.   Left = 213
  3.   Top = 116
  4.   Width = 606
  5.   Height = 407
  6.   ActiveControl = Editor
  7.   Caption = 'Rich Edit Control Demo'
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   FormStyle = fsMDIForm
  14.   Icon.Data = {<image000.ico>}
  15.   Menu = MainMenu
  16.   Position = poDefault
  17.   OnCloseQuery = FormCloseQuery
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   OnPaint = FormPaint
  21.   OnResize = FormResize
  22.   OnShow = FormShow
  23.   PixelsPerInch = 96
  24.   TextHeight = 13
  25.   object Ruler: TPanel
  26.     Left = 0
  27.     Top = 28
  28.     Width = 598
  29.     Height = 26
  30.     Align = alTop
  31.     Alignment = taLeftJustify
  32.     BevelInner = bvLowered
  33.     BevelOuter = bvNone
  34.     BorderWidth = 1
  35.     Font.Charset = DEFAULT_CHARSET
  36.     Font.Color = clBlack
  37.     Font.Height = -11
  38.     Font.Name = 'Arial'
  39.     Font.Style = []
  40.     ParentFont = False
  41.     TabOrder = 0
  42.     OnResize = RulerResize
  43.     object FirstInd: TLabel
  44.       Left = 2
  45.       Top = 2
  46.       Width = 10
  47.       Height = 9
  48.       AutoSize = False
  49.       Caption = '∩┐╜'
  50.       DragCursor = crArrow
  51.       Font.Charset = DEFAULT_CHARSET
  52.       Font.Color = clBlack
  53.       Font.Height = -11
  54.       Font.Name = 'Wingdings'
  55.       Font.Style = []
  56.       ParentFont = False
  57.       OnMouseDown = RulerItemMouseDown
  58.       OnMouseMove = RulerItemMouseMove
  59.       OnMouseUp = FirstIndMouseUp
  60.     end
  61.     object LeftInd: TLabel
  62.       Left = 2
  63.       Top = 12
  64.       Width = 10
  65.       Height = 11
  66.       AutoSize = False
  67.       Caption = '∩┐╜'
  68.       DragCursor = crArrow
  69.       Font.Charset = DEFAULT_CHARSET
  70.       Font.Color = clBlack
  71.       Font.Height = -11
  72.       Font.Name = 'Wingdings'
  73.       Font.Style = []
  74.       ParentFont = False
  75.       OnMouseDown = RulerItemMouseDown
  76.       OnMouseMove = RulerItemMouseMove
  77.       OnMouseUp = LeftIndMouseUp
  78.     end
  79.     object RulerLine: TBevel
  80.       Left = 4
  81.       Top = 12
  82.       Width = 579
  83.       Height = 2
  84.       Shape = bsTopLine
  85.     end
  86.     object RightInd: TLabel
  87.       Left = 575
  88.       Top = 14
  89.       Width = 9
  90.       Height = 12
  91.       Caption = '∩┐╜'
  92.       DragCursor = crArrow
  93.       Font.Charset = DEFAULT_CHARSET
  94.       Font.Color = clBlack
  95.       Font.Height = -11
  96.       Font.Name = 'Wingdings'
  97.       Font.Style = []
  98.       ParentFont = False
  99.       OnMouseDown = RulerItemMouseDown
  100.       OnMouseMove = RulerItemMouseMove
  101.       OnMouseUp = RightIndMouseUp
  102.     end
  103.   end
  104.   object Editor: TOleRichEdit
  105.     Left = 0
  106.     Top = 54
  107.     Width = 598
  108.     Height = 288
  109.     Align = alClient
  110.     Font.Charset = DEFAULT_CHARSET
  111.     Font.Color = clBlack
  112.     Font.Height = -11
  113.     Font.Name = 'Arial'
  114.     Font.Style = []
  115.     ParentFont = False
  116.     ScrollBars = ssBoth
  117.     TabOrder = 1
  118.     OnChange = RichEditChange
  119.     OnSelectionChange = SelectionChange
  120.   end
  121.   object StatusBar: TStatusBar
  122.     Left = 0
  123.     Top = 342
  124.     Width = 598
  125.     Height = 19
  126.     Panels = <
  127.       item
  128.         Width = 120
  129.       end
  130.       item
  131.         Alignment = taCenter
  132.         Width = 60
  133.       end
  134.       item
  135.         Width = 50
  136.       end>
  137.     SimplePanel = False
  138.   end
  139.   object ToolBar: TToolBar
  140.     Left = 0
  141.     Top = 0
  142.     Width = 598
  143.     Height = 28
  144.     BorderWidth = 2
  145.     Flat = True
  146.     Images = ToolbarImages
  147.     Indent = 3
  148.     ParentShowHint = False
  149.     ShowHint = True
  150.     TabOrder = 3
  151.     Wrapable = False
  152.     object OpenButton: TToolButton
  153.       Left = 3
  154.       Top = 0
  155.       Width = 23
  156.       Height = 22
  157.       Hint = 'Open|Open an existing file'
  158.       ImageIndex = 0
  159.       OnClick = FileOpen
  160.     end
  161.     object SaveButton: TToolButton
  162.       Left = 26
  163.       Top = 0
  164.       Width = 23
  165.       Height = 22
  166.       Hint = 'Save|Save current file'
  167.       ImageIndex = 1
  168.       OnClick = FileSave
  169.     end
  170.     object PrintButton: TToolButton
  171.       Left = 49
  172.       Top = 0
  173.       Width = 23
  174.       Height = 22
  175.       Hint = 'Print|Print current file'
  176.       ImageIndex = 2
  177.       OnClick = FilePrint
  178.     end
  179.     object ToolButton5: TToolButton
  180.       Left = 72
  181.       Top = 0
  182.       Width = 8
  183.       Height = 22
  184.       ImageIndex = 3
  185.       Style = tbsDivider
  186.     end
  187.     object UndoButton: TToolButton
  188.       Left = 80
  189.       Top = 0
  190.       Width = 23
  191.       Height = 22
  192.       Hint = 'Undo|Undo the last action'
  193.       Enabled = False
  194.       ImageIndex = 3
  195.       OnClick = EditUndo
  196.     end
  197.     object CutButton: TToolButton
  198.       Left = 103
  199.       Top = 0
  200.       Width = 23
  201.       Height = 22
  202.       Hint = 'Cut|Delete selected item'
  203.       ImageIndex = 4
  204.       OnClick = EditCut
  205.     end
  206.     object CopyButton: TToolButton
  207.       Left = 126
  208.       Top = 0
  209.       Width = 23
  210.       Height = 22
  211.       Hint = 'Copy|Copy selected item to clipboard'
  212.       ImageIndex = 5
  213.       OnClick = EditCopy
  214.     end
  215.     object PasteButton: TToolButton
  216.       Left = 149
  217.       Top = 0
  218.       Width = 23
  219.       Height = 22
  220.       Hint = 'Paste|Paste contents of clipboard'
  221.       ImageIndex = 6
  222.       OnClick = EditPaste
  223.     end
  224.     object ToolButton10: TToolButton
  225.       Left = 172
  226.       Top = 0
  227.       Width = 8
  228.       Height = 22
  229.       ImageIndex = 7
  230.       Style = tbsSeparator
  231.     end
  232.     object FontName: TComboBox
  233.       Left = 180
  234.       Top = 0
  235.       Width = 145
  236.       Height = 21
  237.       Hint = 'Font Name|Select font name'
  238.       Ctl3D = False
  239.       ItemHeight = 13
  240.       ParentCtl3D = False
  241.       TabOrder = 0
  242.       Text = 'FontName'
  243.       OnChange = FontNameChange
  244.     end
  245.     object ToolButton11: TToolButton
  246.       Left = 325
  247.       Top = 0
  248.       Width = 8
  249.       Height = 22
  250.       ImageIndex = 8
  251.       Style = tbsSeparator
  252.     end
  253.     object FontSize: TEdit
  254.       Left = 333
  255.       Top = 0
  256.       Width = 151
  257.       Height = 22
  258.       Hint = 'Font Size|Select font size'
  259.       TabOrder = 1
  260.       Text = '0'
  261.       OnChange = FontSizeChange
  262.     end
  263.     object UpDown1: TUpDown
  264.       Left = 484
  265.       Top = 0
  266.       Width = 15
  267.       Height = 22
  268.       Associate = FontSize
  269.       Min = 0
  270.       Position = 0
  271.       TabOrder = 2
  272.       Wrap = False
  273.     end
  274.     object BoldButton: TToolButton
  275.       Left = 499
  276.       Top = 0
  277.       Width = 23
  278.       Height = 22
  279.       Hint = 'Bold'
  280.       ImageIndex = 7
  281.       Style = tbsCheck
  282.       OnClick = BoldButtonClick
  283.     end
  284.     object ItalicButton: TToolButton
  285.       Left = 522
  286.       Top = 0
  287.       Width = 23
  288.       Height = 22
  289.       Hint = 'Italic'
  290.       ImageIndex = 8
  291.       Style = tbsCheck
  292.       OnClick = ItalicButtonClick
  293.     end
  294.     object UnderlineButton: TToolButton
  295.       Left = 545
  296.       Top = 0
  297.       Width = 23
  298.       Height = 22
  299.       Hint = 'Underline'
  300.       ImageIndex = 9
  301.       Style = tbsCheck
  302.       OnClick = UnderlineButtonClick
  303.     end
  304.     object ToolButton16: TToolButton
  305.       Left = 568
  306.       Top = 0
  307.       Width = 8
  308.       Height = 22
  309.       ImageIndex = 12
  310.       Style = tbsDivider
  311.     end
  312.     object LeftAlign: TToolButton
  313.       Left = 576
  314.       Top = 0
  315.       Width = 23
  316.       Height = 22
  317.       Hint = 'Align Left'
  318.       Grouped = True
  319.       ImageIndex = 10
  320.       Style = tbsCheck
  321.       OnClick = AlignButtonClick
  322.     end
  323.     object CenterAlign: TToolButton
  324.       Tag = 2
  325.       Left = 599
  326.       Top = 0
  327.       Width = 23
  328.       Height = 22
  329.       Hint = 'Center'
  330.       Grouped = True
  331.       ImageIndex = 11
  332.       Style = tbsCheck
  333.       OnClick = AlignButtonClick
  334.     end
  335.     object RightAlign: TToolButton
  336.       Tag = 1
  337.       Left = 622
  338.       Top = 0
  339.       Width = 23
  340.       Height = 22
  341.       Hint = 'Align Right'
  342.       Grouped = True
  343.       ImageIndex = 12
  344.       Style = tbsCheck
  345.       OnClick = AlignButtonClick
  346.     end
  347.     object ToolButton20: TToolButton
  348.       Left = 645
  349.       Top = 0
  350.       Width = 8
  351.       Height = 22
  352.       ImageIndex = 15
  353.       Style = tbsDivider
  354.     end
  355.     object BulletsButton: TToolButton
  356.       Left = 653
  357.       Top = 0
  358.       Width = 23
  359.       Height = 22
  360.       Hint = 'Bullets|Enter bullet mode'
  361.       ImageIndex = 13
  362.       Style = tbsCheck
  363.       OnClick = BulletsButtonClick
  364.     end
  365.   end
  366.   object MainMenu: TMainMenu
  367.     Left = 442
  368.     Top = 311
  369.     object FileMenu: TMenuItem
  370.       Caption = '&File'
  371.       object FileNewItem: TMenuItem
  372.         Caption = '&New'
  373.         Hint = 'Create a new file'
  374.         ShortCut = 16462
  375.         OnClick = FileNew
  376.       end
  377.       object FileOpenItem: TMenuItem
  378.         Caption = '&Open...'
  379.         Hint = 'Open an existing file'
  380.         ShortCut = 16463
  381.         OnClick = FileOpen
  382.       end
  383.       object FileSaveItem: TMenuItem
  384.         Caption = '&Save'
  385.         Hint = 'Save current file'
  386.         ShortCut = 16467
  387.         OnClick = FileSave
  388.       end
  389.       object FileSaveAsItem: TMenuItem
  390.         Caption = 'Save &As...'
  391.         Hint = 'Save current file under a new name'
  392.         OnClick = FileSaveAs
  393.       end
  394.       object N1: TMenuItem
  395.         Caption = '-'
  396.       end
  397.       object FilePrintItem: TMenuItem
  398.         Caption = '&Print'
  399.         Hint = 'Print current file'
  400.         ShortCut = 16464
  401.         OnClick = FilePrint
  402.       end
  403.       object N4: TMenuItem
  404.         Caption = '-'
  405.       end
  406.       object FileExitItem: TMenuItem
  407.         Caption = 'E&xit'
  408.         Hint = 'Exit this application'
  409.         ShortCut = 32856
  410.         OnClick = FileExit
  411.       end
  412.     end
  413.     object EditMenu: TMenuItem
  414.       Caption = '&Edit'
  415.       GroupIndex = 1
  416.       object EditUndoItem: TMenuItem
  417.         Caption = '&Undo'
  418.         Hint = 'Undo the last action'
  419.         ShortCut = 16474
  420.         OnClick = EditUndo
  421.       end
  422.       object N2: TMenuItem
  423.         Caption = '-'
  424.       end
  425.       object EditCutItem: TMenuItem
  426.         Caption = 'Cu&t'
  427.         Hint = 'Delete selected item'
  428.         ShortCut = 16472
  429.         OnClick = EditCut
  430.       end
  431.       object EditCopyItem: TMenuItem
  432.         Caption = '&Copy'
  433.         Hint = 'Copy selected item to clipboard'
  434.         ShortCut = 16451
  435.         OnClick = EditCopy
  436.       end
  437.       object EditPasteItem: TMenuItem
  438.         Caption = '&Paste'
  439.         Hint = 'Paste contents of clipboard'
  440.         ShortCut = 16470
  441.         OnClick = EditPaste
  442.       end
  443.       object N5: TMenuItem
  444.         Caption = '-'
  445.       end
  446.       object miEditFont: TMenuItem
  447.         Caption = '&Font...'
  448.         OnClick = SelectFont
  449.       end
  450.     end
  451.     object Insert1: TMenuItem
  452.       Caption = '&Insert'
  453.       GroupIndex = 1
  454.       Visible = False
  455.       object Object1: TMenuItem
  456.         Caption = 'Object...'
  457.       end
  458.     end
  459.     object HelpMenu: TMenuItem
  460.       Caption = '&Help'
  461.       GroupIndex = 1
  462.       object HelpContentsItem: TMenuItem
  463.         Caption = '&Contents'
  464.         Hint = 'Display the help contents screen'
  465.         OnClick = HelpContents
  466.       end
  467.       object HelpSearchItem: TMenuItem
  468.         Caption = '&Search for Help On...'
  469.         Hint = 'Search help file for a topic'
  470.         OnClick = HelpSearch
  471.       end
  472.       object HelpHowToUseItem: TMenuItem
  473.         Caption = '&How to Use Help'
  474.         Hint = 'Help on using the help system'
  475.         OnClick = HelpHowToUse
  476.       end
  477.       object N3: TMenuItem
  478.         Caption = '-'
  479.       end
  480.       object HelpAboutItem: TMenuItem
  481.         Caption = '&About...'
  482.         Hint = 'Show program information'
  483.         OnClick = HelpAbout
  484.       end
  485.     end
  486.   end
  487.   object OpenDialog: TOpenDialog
  488.     Filter = 'Rich Text Files (*.RTF)|*.RTF|Text Files (*.TXT)|*.TXT'
  489.     Left = 503
  490.     Top = 309
  491.   end
  492.   object SaveDialog: TSaveDialog
  493.     Filter = 'Rich Text Files (*.RTF)|*.RTF|Text Files (*.TXT)|*.TXT'
  494.     Left = 533
  495.     Top = 309
  496.   end
  497.   object PrintDialog: TPrintDialog
  498.     Left = 562
  499.     Top = 308
  500.   end
  501.   object FontDialog1: TFontDialog
  502.     Font.Charset = DEFAULT_CHARSET
  503.     Font.Color = clWindowText
  504.     Font.Height = -11
  505.     Font.Name = 'MS Sans Serif'
  506.     Font.Style = []
  507.     MinFontSize = 0
  508.     MaxFontSize = 0
  509.     Left = 473
  510.     Top = 310
  511.   end
  512.   object ToolbarImages: TImageList
  513.     Left = 552
  514.     Top = 264
  515.     Bitmap = {
  516.       362000000E000000424D36200000000000003600000028000000400000004000
  517.       0000010010000000000000200000000000000000000000000000000000000000
  518.       0000000000000000000000000000000000000000000000000000000000000000
  519.       000000000000000000000000000000000000000000000000000000000000FF7F
  520.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  521.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  522.       0000000000000000000000000000000000000000000000000000000000000000
  523.       000000000000000000000000000000000000000000000000000000000000FF7F
  524.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  525.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  526.       0000000000000000000000000000000000000000000000000000000000000000
  527.       0F000F000F00000000000000000000000000000000000000000000000000FF7F
  528.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  529.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  530.       0000000000000000000000000000000000000000000000000000000000000000
  531.       0F000F000F00000000000000000000000000000000000000000000000000FF7F
  532.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  533.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  534.       0000000000000000000000000000000000000000000000000000000000000000
  535.       0F000F000F00000000000000000000000000000000000000000000000000FF7F
  536.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  537.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  538.       0000000000000000000000000000000000000000000000000000000000000000
  539.       000000000000000000000000000000000000000000000000000000000000FF7F
  540.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  541.       FF7FFF7FF75EF75EFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  542.       0000000000000000000000000000000000000000000000000000000000000000
  543.       000000000000000000000000000000000000000000000000000000000000FF7F
  544.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  545.       0000000000000000000000000000000000000000000000000000000000000000
  546.       0000000000000000000000000000000000000000000000000000000000000000
  547.       0F000F000F00000000000000000000000000000000000000000000000000FF7F
  548.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  549.       0000000000000000000000000000000000000000000000000000000000000000
  550.       0000000000000000000000000000000000000000000000000000000000000000
  551.       0F000F000F000000000000000000000000000000000000000000000000000000
  552.       0000000000000000000000000000000000000000000000000000000000000000
  553.       0000FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  554.       0000000000000000000000000000000000000000000000000000000000000000
  555.       0F000F000F00000000000000000000000000000000000000000000000000FF7F
  556.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  557.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  558.       0000000000000000000000000000000000000000000000000000000000000000
  559.       000000000000000000000000000000000000000000000000000000000000FF7F
  560.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  561.       FF7FFF7FFF7F00000000EF3DFF7F000000000000000000000000000000000000
  562.       0000000000000000000000000000000000000000000000000000000000000000
  563.       0000000000000000000000000000000000000000000000000000000000000000
  564.       0000EF3DFF7F0000000000000000000000000000000000000000000000000000
  565.       0000EF3DFF7F00000000EF3D0000FF7F0000FF7F0000FF7F0000FF7F00000000
  566.       0000000000000000000000000000000000000000000000000000000000000000
  567.       0F000F000F000000000000000000000000000000000000000000000000000000
  568.       0000EF3DFF7F0000FF7F0000FF7F0000FF7F0000FF7F0000FF7F0000FF7F0000
  569.       FF7F0000FF7F00000000FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  570.       0000000000000000000000000000000000000000000000000000000000000000
  571.       0F000F000F000000000000000000000000000000000000000000000000000000
  572.       0000FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  573.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000
  574.       0000000000000000000000000000000000000000000000000000000000000000
  575.       0F000F000F00000000000000000000000000000000000000000000000000FF7F
  576.       FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F
  577.       FF7FFF7FFF7FFF7FFF7FFF7FFF7F00000000EF3DFF7F00000000000000000000
  578.       0000000000000000000000000000000000000000000000000000000000000000
  579.       000000000000000000000000000000000000000000000000000000000000FF7F
  580.       FF7FFF7FFF7F00000000EF3DFF7F000000000000000000000000000000000000
  581.       00000000000000000000EF3DFF7F00000000EF3DFF7F0000FF7F0000FF7F0000
  582.       0000000000000000000000000000000000000000000000000000000000000000
  583.       0000000000000000000000000000000000000000000000000000000000000000
  584.       0000000000000000000000000000000000000000000000000000000000000000
  585.       0000000000000000000000000000000000000000000000000000000000000000
  586.       0000000000000000000000000000000000000000000000000000000000000000
  587.       0000000000000000000000000000000000000000000000000000000000000000
  588.       0000000000000000000000000000000000000000000000000000000000000000
  589.       0000000000000000000000000000000000000000000000000000000000000000
  590.       0000000000000000000000000000000000000000000000000000000000000000
  591.       0000000000000000000000000000000000000000000000000000000000000000
  592.       0000000000000000000000000000000000000000000000000000000000000000
  593.       0000000000000000000000000000000000000000000000000000000000000000
  594.       0000000000000000000000000000000000000000000000000000000000000000
  595.       0000000000000000000000000000000000000000000000000000000000000000
  596.       0000000000000000000000000000000000000000000000000000000000000000
  597.       0000000000000000000000000000000000000000000000000000000000000000
  598.       0000000000000000000000000000000000000000000000000000000000000000
  599.       0000000000000000000000000000000000000000000000000000000000000000
  600.       0000000000000000000000000000000000000000000000000000000000000000
  601.       0000000000000000000000000000000000000000000000000000000000000000
  602.       0000000000000000000000000000000000000000000000000000000000000000
  603.       0000000000000000000000000000000000000000000000000000000000000000
  604.       0000000000000000000000000000000000000000000000000000000000000000
  605.       0000000000000000000000000000000000000000000000000000000000000000
  606.       0000000000000000000000000000000000000000000000000000000000000000
  607.       0000000000000000000000000000000000000000000000000000000000000000
  608.       0000000000000000000000000000000000000000000000000000000000000000
  609.       0000000000000000000000000000000000000000000000000000000000000000
  610.       0000000000000000000000000000000000000000000000000000000000000000
  611.       0000000000000000000000000000000000000000000000000000000000000000
  612.       0000000000000000000000000000000000000000000000000000000000000000
  613.       0000000000000000000000000000000000000000000000000000000000000000
  614.       0000000000000000000000000000000000000000000000000000000000000000
  615.       0000000000000000000000000000000000000000000000000000000000000000
  616.       0000000000000000000000000000000000000000000000000000000000000000
  617.       0000000000000000000000000000000000000000000000000000000000000000
  618.       0000000000000000000000000000000000000000000000000000000000000000
  619.       0000000000000000000000000000000000000000000000000000000000000000
  620.       0000000000000000000000000000000000000000000000000000000000000000
  621.       0000000000000000000000000000000000000000000000000000000000000000
  622.       0000000000000000000000000000000000000000000000000000000000000000
  623.       0000000000000000000000000000000000000000000000000000000000000000
  624.       0000000000000000000000000000000000000000000000000000000000000000
  625.       0000000000000000000000000000000000000000000000000000000000000000
  626.       0000000000000000000000000000000000000000000000000000000000000000
  627.       0000000000000000000000000000000000000000000000000000000000000000
  628.       0000000000000000000000000000000000000000000000000000000000000000
  629.       0000000000000000000000000000000000000000000000000000000000000000
  630.       0000000000000000000000000000000000000000000000000000000000000000
  631.       0000000000000000000000000000000000000000000000000000000000000000
  632.       0000000000000000000000000000000000000000000000000000000000000000
  633.       0000000000000000000000000000000000000000000000000000000000000000
  634.       0000000000000000000000000000000000000000000000000000000000000000
  635.       0000000000000000000000000000000000000000000000000000000000000000
  636.       0000000000000000000000000000000000000000000000000000000000000000
  637.       0000000000000000000000000000000000000000000000000000000000000000
  638.       0000000000000000000000000000000000000000000000000000000000000000
  639.       0000000000000000000000000000000000000000000000000000000000000000
  640.       0000000000000000000000000000000000000000000000000000000000000000
  641.       0000000000000000000000000000000000000000000000000000000000000000
  642.       0000000000000000000000000000000000000000000000000000000000000000
  643.       0000000000000000000000000000000000000000000000000000000000000000
  644.       0000000000000000000000000000000000000000000000000000000000000000
  645.       0000000000000000000000000000000000000000000000000000000000000000
  646.       0000000000000000000000000000000000000000000000000000000000000000
  647.       0000000000000000000000000000000000000000000000000000000000000000
  648.       0000000000000000000000000000000000000000000000000000000000000000
  649.       0000000000000000000000000000000000000000000000000000000000000000
  650.       00000000000000000F000F000000000000000000000000000000000000000000
  651.       0000000000000000000000000000000000000000000000000000000000000000
  652.       000000000000000000000F000F000F000F000F000F000F000F000F000F000000
  653.       0000000000000000000000000000000000000000000000000000000000000000
  654.       0000000000000F00000000000F00000000000F000F0000000000000000000000
  655.       0000000000000000000000000F000F000F000F000F000F000F000F000F000000
  656.       000000000000000000000F00FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0F000000
  657.       0000000000000000000000000000000000000000000000000000000000000000
  658.       0000000000000F00000000000F0000000F00000000000F000000000000000000
  659.       0000000000000000000000000F00FF7FFF7FFF7FFF7FFF7FFF7FFF7F0F000000
  660.       EF3DE03DEF3DE03DEF3D0F00FF7F000000000000000000000000FF7F0F000000
  661.       0000000000000000000000000000000000000000000000000000000000000000
  662.       0000000000000F00000000000F0000000F00000000000F000000000000000000
  663.       0000000000000000000000000F00FF7F00000000000000000000FF7F0F000000
  664.       E03DEF3DE03DEF3DE03D0F00FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0F000000
  665.       0000000000000000000000000000000000000000000000000000000000000000
  666.       00000000000000000F000F000F0000000F00000000000F000000000000000000
  667.       0000000000000000000000000F00FF7FFF7FFF7FFF7FFF7FFF7FFF7F0F000000
  668.       EF3DE03DEF3DE03DEF3D0F00FF7F000000000000FF7F0F000F000F000F000000
  669.       0000000000000000000000000000000000000000000000000000000000000000
  670.       0000000000000000000000000F0000000F000F000F0000000000000000000000
  671.       0000FF7FFF7FFF7FFF7FFF7F0F00FF7F00000000000000000000FF7F0F000000
  672.       E03DEF3DE03DEF3DE03D0F00FF7FFF7FFF7FFF7FFF7F0F00FF7F0F0000000000
  673.       0000000000000000000000000000000000000000000000000000000000000000
  674.       0000000000000000000000000F0000000F000000000000000000000000000000
  675.       0000FF7F00000000000000000F00FF7FFF7FFF7FFF7FFF7FFF7FFF7F0F000000
  676.       EF3DE03DEF3DE03DEF3D0F00FF7FFF7FFF7FFF7FFF7F0F000F00000000000000
  677.       0000000000000000000000000000000000000000000000000000000000000000
  678.       0000000000000000000000000000000000000000000000000000000000000000
  679.       0000FF7FFF7FFF7FFF7FFF7F0F00FF7F00000000FF7F0F000F000F000F000000
  680.       E03DEF3DE03DEF3DE03D0F000F000F000F000F000F000F000000000000000000
  681.       0000000000000000000000000000000000000000000000000000000000000000
  682.       0000000000000000000000000000000000000000000000000000000000000000
  683.       0000FF7F00000000000000000F00FF7FFF7FFF7FFF7F0F00FF7F0F0000000000
  684.       EF3DE03DEF3DE03DEF3DE03DEF3DE03DEF3DE03DEF3DE03D0000000000000000
  685.       0000000000000000000000000000000000000000000000000000000000000000
  686.       0000000000000000000000000000000000000000000000000000000000000000
  687.       0000FF7FFF7FFF7FFF7FFF7F0F00FF7FFF7FFF7FFF7F0F000F00000000000000
  688.       E03DEF3D00000000000000000000000000000000EF3DEF3D0000000000000000
  689.       0000000000000000000000000000000000000000000000000000000000000000
  690.       0000000000000000000000000000000000000000000000000000000000000000
  691.       0000FF7F00000000FF7F00000F000F000F000F000F000F000000000000000000
  692.       EF3DEF3D00000000000000000000000000000000EF3DE03D0000000000000000
  693.       0000000000000000000000000000000000000000000000000000000000000000
  694.       0000000000000000000000000000000000000000000000000000000000000000
  695.       0000FF7FFF7FFF7FFF7F0000FF7F000000000000000000000000000000000000
  696.       E03DEF3DE03D0000E07F00000000E07F0000EF3DE03DEF3D0000000000000000
  697.       0000000000000000000000000000000000000000000000000000000000000000
  698.       0000000000000000000000000000000000000000000000000000000000000000
  699.       0000FF7FFF7FFF7FFF7F00000000000000000000000000000000000000000000
  700.       00000000000000000000E07FE07F000000000000000000000000000000000000
  701.       0000000000000000000000000000000000000000000000000000000000000000
  702.       0000000000000000000000000000000000000000000000000000000000000000
  703.       0000000000000000000000000000000000000000000000000000000000000000
  704.       0000000000000000000000000000000000000000000000000000000000000000
  705.       0000000000000000000000000000000000000000000000000000000000000000
  706.       0000000000000000000000000000000000000000000000000000000000000000
  707.       0000000000000000000000000000000000000000000000000000000000000000
  708.       0000000000000000000000000000000000000000000000000000000000000000
  709.       0000000000000000000000000000000000000000000000000000000000000000
  710.       0000000000000000000000000000000000000000000000000000000000000000
  711.       0000000000000000000000000000000000000000000000000000000000000000
  712.       0000000000000000000000000000000000000000000000000000000000000000
  713.       0000000000000000000000000000000000000000000000000000000000000000
  714.       0000000000000000000000000000000000000000000000000000000000000000
  715.       0000000000000000000000000000000000000000000000000000000000000000
  716.       0000000000000000000000000000000000000000000000000000000000000000
  717.       0000000000000000000000000000000000000000000000000000000000000000
  718.       0000000000000000000000000000000000000000000000000000000000000000
  719.       0000E03DE03D000000000000000000000000000000000000E03D000000000000
  720.       0000000000000000000000000000000000000000000000000000000000000000
  721.       0000000000000000000000000000000000000000000000000000000000000000
  722.       0000E03DE03DE03DE03DE03DE03DE03DE03DE03D000000000000000000000000
  723.       0000E03DE03D000000000000000000000000000000000000E03D000000000000
  724.       0000000000000000000000000000000000000000000000000000000000000000
  725.       0000000000000000000000000000000000000000000000000000000000000000
  726.       E07F0000E03DE03DE03DE03DE03DE03DE03DE03DE03D00000000000000000000
  727.       0000E03DE03D000000000000000000000000000000000000E03D000000000000
  728.       000000000000000000000000E07FE07FE07F0000000000000000000000000000
  729.       0000000000000000000000000000000000000000000000000000000000000000
  730.       FF7FE07F0000E03DE03DE03DE03DE03DE03DE03DE03DE03D0000000000000000
  731.       0000E03DE03D000000000000000000000000000000000000E03D000000000000
  732.       000000000000000000000000EF3DEF3DEF3D0000000000000000000000000000
  733.       000000000000000000000000000000000000000000000F000000000000000000
  734.       E07FFF7FE07F0000E03DE03DE03DE03DE03DE03DE03DE03DE03D000000000000
  735.       0000E03DE03DE03DE03DE03DE03DE03DE03DE03DE03DE03DE03D000000000000
  736.       0000000000000000000000000000000000000000000000000000000000000000
  737.       00000F000F000F000F000F00000000000000000000000F000000000000000000
  738.       FF7FE07FFF7FE07F000000000000000000000000000000000000000000000000
  739.       0000E03DE03D00000000000000000000000000000000E03DE03D000000000000
  740.       0000000000000000000000000000000000000000000000000000000000000000
  741.       00000F000F000F000F0000000000000000000000000000000F00000000000000
  742.       E07FFF7FE07FFF7FE07FFF7FE07FFF7FE07F0000000000000000000000000000
  743.       0000E03D0000000000000000000000000000000000000000E03D000000000000
  744.       0000000000000000000000000000000000000000000000000000000000000000
  745.       00000F000F000F00000000000000000000000000000000000F00000000000000
  746.       FF7FE07FFF7FE07FFF7FE07FFF7FE07FFF7F0000000000000000000000000000
  747.       0000E03D0000000000000000000000000000000000000000E03D000000000000
  748.       00000000FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F000000000000000000000000
  749.       00000F000F0000000F0000000000000000000000000000000F00000000000000
  750.       E07FFF7FE07F0000000000000000000000000000000000000000000000000000
  751.       0000E03D0000000000000000000000000000000000000000E03D000000000000
  752.       000000000000FF7F00000000000000000000FF7F000000000000000000000000
  753.       00000F000000000000000F000F0000000000000000000F000000000000000000
  754.       0000000000000000000000000000000000000000000000000000000000000000
  755.       0000E03D0000000000000000000000000000000000000000E03D000000000000
  756.       000000000000FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F00000000000000000000
  757.       00000000000000000000000000000F000F000F000F0000000000000000000000
  758.       0000000000000000000000000000000000000000000000000000000000000000
  759.       0000E03D00000000000000000000000000000000000000000000000000000000
  760.       0000000000000000FF7F00000000000000000000FF7F00000000000000000000
  761.       0000000000000000000000000000000000000000000000000000000000000000
  762.       0000000000000000000000000000000000000000000000000000000000000000
  763.       0000E03D00000000000000000000000000000000000000000000000000000000
  764.       0000000000000000FF7FFF7FFF7FFF7FFF7FFF7FFF7FFF7F0000000000000000
  765.       0000000000000000000000000000000000000000000000000000000000000000
  766.       0000000000000000000000000000000000000000000000000000000000000000
  767.       0000000000000000000000000000000000000000000000000000000000000000
  768.       0000000000000000000000000000000000000000000000000000000000000000
  769.       0000000000000000000000000000000000000000000000000000000000000000
  770.       0000000000000000000000000000000000000000000000000000000000000000
  771.       0000000000000000000000000000000000000000000000000000000000000000
  772.       0000000000000000000000000000000000000000000000000000000000000000
  773.       000000000000000000000000000000000000000000000000000000000000424D
  774.       3E020000000000003E0000002800000040000000400000000100010000000000
  775.       000200000000000000000000020000000000000000000000FFFFFF00FFFFFFFF
  776.       00000000FFFFFFFF00000000FFFF8FFF00000000C0078C0300000000FFFF8FFF
  777.       00000000F807FFFF00000000FFFFFFFF00000000C0078FFF00000000FFFF8C03
  778.       00000000F8078FFF00000000FFFFFFFF00000000C007FFFF00000000FFFF8FFF
  779.       00000000F8078C0300000000FFFF8FFF00000000FFFFFFFF00000000FFFFFFFF
  780.       FFFFFFFFFFFFFFFFFFFFFFFFFFFFE00FFFFFFFFFFFFFFFFFC007C00781FFF83F
  781.       FFFFFFFFE3FFF39FC03FF83FF1FFF39FFFFFFFFFF8FFF39FC007C007FC7FF39F
  782.       FFFFFFFFFE3FF39FC03FF01FFF1FF39FFFFFFFFFFF8FF39FC007C007FF03E10F
  783.       FFFFFFFFFFFFFFFFC03FF83FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF
  784.       FFFFFFFFF9FFFFFFFC00FFFFF6CFFE008000FFFFF6B7FE000000FFFFF6B7FE00
  785.       0000F00FF8B780000000F8C7FE8F80000001F8C7FE3F80000003F8C7FF7F8000
  786.       0003F80FFE3F80010003F8C7FEBF80030003F8C7FC9F80070FC3F8C7FDDF807F
  787.       0003F00FFDDF80FF8007FFFFFDDF81FFF87FFFFFFFFFFFFFFFFFFFFFFFFFFFFF
  788.       FFFFFFFFFFFFC001C007FFFF001F8031BFEBFFFF000F80310005FFFF00078031
  789.       7E31FFFF000380017E35FFF7000180010006C1F7000080017FEAC3FB001F8FF1
  790.       8014C7FB001F8FF1C00ACBFB001F8FF1E001DCF78FF18FF1E007FF0FFFF98FF1
  791.       F007FFFFFF758FF5F003FFFFFF8F8001F803FFFFFFFFFFFFFFFFFFFF}
  792.   end
  793. end
  794.